home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 July / macformat52.iso / mac / Shareware Plus / Developers / YAAF v1.0 alpha 1 / (Samples) / Test Programs / TestSingleDialog / TestSingle.rc < prev    next >
Encoding:
Text File  |  1997-04-15  |  1021 b   |  47 lines

  1. /*    TestSingle.rc
  2.  *
  3.  *        Single window application test.
  4.  */
  5.  
  6.  
  7. /************************************************************************/
  8. /*                                                                        */
  9. /*    Menu Resources                                                        */
  10. /*                                                                        */
  11. /************************************************************************/
  12.  
  13. 128 MENU
  14.     BEGIN
  15.         POPUP "&File"
  16.             BEGIN
  17.                 MENUITEM "&Test Modal",    100
  18.                 MENUITEM "&Test Modeless", 101
  19.                 MENUITEM "&Close",        2
  20.                 MENUITEM "&Quit",        3
  21.             END
  22.         POPUP "&Edit"
  23.             BEGIN
  24.                 MENUITEM "&Undo",        4
  25.                 MENUITEM SEPARATOR
  26.                 MENUITEM "Cu&t",        5
  27.                 MENUITEM "&Copy",        6
  28.                 MENUITEM "&Paste",        7
  29.                 MENUITEM "De&lete",        8
  30.             END
  31.         POPUP "&Help"
  32.             BEGIN
  33.                 MENUITEM "&About TestSingle...",    1
  34.             END
  35.     END
  36.  
  37.  
  38. /************************************************************************/
  39. /*                                                                        */
  40. /*    View structure                                                        */
  41. /*                                                                        */
  42. /************************************************************************/
  43.  
  44. 128 VRes test_win.vres
  45. 129 VRes test2_win.vres
  46. 130 VRes test3_win.vres
  47.